home *** CD-ROM | disk | FTP | other *** search
/ Ice Princess Press Kit / Ice Princess Press Kit.iso / pc / program.dxr / Internal_46_PNotesSaveSele.ls < prev    next >
Encoding:
Text File  |  2005-03-02  |  320 b   |  25 lines

  1. global gPhotolist, gPKNotes
  2.  
  3. on mouseEnter
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave
  8.   cursor(0)
  9. end
  10.  
  11. on mouseUp me
  12.   if gPKNotes = 1 then
  13.     gPKNotes = 0
  14.     gPhotolist.deleteOne("vNotes")
  15.   else
  16.     gPKNotes = 1
  17.     gPhotolist.add("vNotes")
  18.   end if
  19. end
  20.  
  21. on mouseDown me
  22.   sound(3).play(member("Shutter"))
  23.   updateStage()
  24. end
  25.